home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / svgabg31.zip / MAKEBGI.BAT < prev    next >
DOS Batch File  |  1991-10-12  |  644b  |  33 lines

  1. @echo off
  2. if X%1 not == X goto SelectType
  3. if %1 == t goto makeTweak
  4. if %1 == s goto makeSuperVGA
  5. goto SelectType
  6.  
  7. :makeSuperVGA
  8. masm SVGA%2.asm,SVGA%2.obj ;
  9. tlink SVGA%2.obj
  10. exe2bin SVGA%2.exe SVGA%2.bin
  11. bh SVGA%2.bin SVGA%2.bgi SVGA%2
  12. del SVGA%2.exe
  13. del SVGA%2.obj
  14. del SVGA%2.bin
  15. del SVGA%2.map
  16. goto Exit
  17.  
  18. :makeTweak
  19. masm TWK%2.asm,TWK%2.obj ;
  20. tlink TWK%2.obj
  21. exe2bin TWK%2.exe TWK%2.bin
  22. bh TWK%2.bin TWK%2.bgi TWK%2
  23. del TWK%2.exe
  24. del TWK%2.obj
  25. del TWK%2.bin
  26. del TWK%2.map
  27. goto Exit
  28.  
  29. :SelectType
  30. echo Usage: "makebgi [s|t] clr"
  31. echo For example: to make the Tweaked-16 color driver enter: "makebgi t 16"
  32.  
  33. :Exit